home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 September / CHIP_CD_2004-09.iso / macos / pack1 / files / MaxBulkMailer.sit / MaxBulk Mailer / Examples / Applescript / AppleScript How-To < prev    next >
Text File  |  2003-02-24  |  3KB  |  94 lines

  1.  MaxBulk Mailer⌐ [AppleScript]
  2. [M A X P R O G] - February 2003 - Copyright ⌐ 2000 - 2003
  3. Please read the enclosed License Agreement for further legal information.
  4. MAX Programming, LLC -  All rights reserved worldwide.
  5. E-mail: support@maxprog.com - Web: http://www.maxprog.com
  6.  
  7.  Setting message subject
  8.     Set message subject. (Required)
  9.     Ex: SetSubject "Where is Kitty?"
  10.  
  11.  Setting message contents
  12.     Set message contents. (Required)
  13.     Ex: SetMessage "You will find attached a picture of Kitty." -- Required
  14.  
  15.  Setting message format
  16.     Set message format from: (Optional)
  17.       [0] Plain Text (default)
  18.      [1] Text/HTML
  19.    [2] HTML
  20.      [3] Styled Text
  21.  
  22.     Ex: SetFormat 3
  23.  
  24.  Setting message priority
  25.     Set message priority from: (Optional)
  26.      [0 ] Highest
  27.     [1] High
  28.     [2] Normal (default)
  29.     [3] Low 
  30.     [4] Lowest
  31.  
  32.     Ex: SetPriority 0
  33.  
  34.  Adding attachments
  35.     Add an attachment to the message. (Optional)
  36.     - Absolute file path or relative to current directory.
  37.     - Add a heading ":" to the path to force MaxBulk to consider it as Relative to current directory.
  38.  
  39.     Ex: AddAttachment ":Examples:Applescript:samplepicture.jpg"
  40.  
  41.  Setting attachment encoding
  42.     Set attachment encoding. (Optional)
  43.     [0] Base64 (default)
  44.     [1] UUEncode
  45.     [2] MacBinary
  46.     [3] BinHex
  47.     [4] AppleSingle
  48.     [5] AppleDouble
  49.  
  50.     Ex: SetFileEncoding 5
  51.  
  52.  Selecting a list
  53.     Select a list from the pull-down list menu by name. (Optional)
  54.     - If list is not found no list is selected.
  55.     - If an empty name is passed, "", all recipients are removed from current list.
  56.  
  57.     Ex: SelectList "[TEST] Maxprog - Single"
  58.  
  59.  Adding recipients
  60.     Add recipients to the list (Optional)
  61.     Following forms are allowed:
  62.      
  63.       AddRecipient "John Smith <john@maxprog.com>,cherryl@maxprog.com"
  64.       AddRecipient john@maxprog.com,cherryl@maxprog.com
  65.       AddRecipient "Richard;Wagner;MaxProg;richard@maxprog.com"
  66.  
  67.  Removing recipients
  68.     Remove recipients from the list (Optional)
  69.     Following forms are allowed:
  70.  
  71.       DeleteRecipient "John Smith <john@maxprog.com>,cherryl@maxprog.com"
  72.       DeleteRecipient john@maxprog.com,cherryl@maxprog.com
  73.       DeleteRecipient "Richard;Wagner;MaxProg;richard@maxprog.com"
  74.     
  75.  Selecting an account
  76.     Select an account from the pull-down account menu by name. (Required)
  77.     - If an empty name is passed, "", account is reseted.
  78.     Ex: SelectAccount "Maxprog"
  79.  
  80.  Sending message
  81.     SelectSend message with or without asking for a return receipt (Optional)
  82.       [0] No Return Receipt (Default)
  83.       [1] Ask for a Return Receipt
  84.  
  85.     Following forms are allowed:
  86.       SendMail
  87.       SendMail 0
  88.       SendMail 1
  89.  
  90.  
  91. -- 
  92. Last Updated on February 25th, 2003
  93. ⌐ Max Programming, LLC
  94.